home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-08-29 | 1.1 KB | 49 lines |
- #
- # Makefile for the
- # Test files for the
- # Object-oriented Abstract Type Hierarchy (OATH)
- #
- ###########################################################################
- # Set-up C++ Compilation
-
- CCC = CC
- CCFLAGS = -O -I../include
- LDLIBS = -L../lib/$(TARGET_ARCH:-%=%) -loath
-
- #COMPILE.cc = $(CCC) $(CCFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
- #LINK.cc = $(CCC) $(CCFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)
-
- #%.o : %.cc
- # $(COMPILE.cc) $<
- #% : %.cc
- # $(LINK.cc) -o $@ $< $(LDLIBS)
-
- ###########################################################################
-
- .KEEP_STATE:
-
- ###########################################################################
-
- default:
- @ echo "This Makefile has no default make -- you must specify one!"
- @ echo " make <base file name>"
- @ echo " or"
- @ echo " make <predefined Makefile member>"
-
- ###########################################################################
-
- purge: clean
- rm -f *.o
-
- ###########################################################################
-
- clean:
- rm -f *~
- rm -f core*
-
- ###########################################################################
-
-
-
-
-